home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00030_Asynchronous Banner.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  5.6 KB  |  206 lines

  1. --
  2. -- Banner
  3. --
  4.  
  5. -- Play a specific sound, show some text and animate while the sound is playing.  
  6. -- Requires a specific sprite grouping.
  7. -- This banner plays asynchronously.
  8.  
  9. property ancestor
  10.  
  11.  
  12. -- sound banner constants:
  13. property bannerSprite     -- the sprite we will take over for animating
  14. property bannerFieldCast  -- the number of the field we will be refreshing
  15. property bannerCastList   -- the list of members we will be animating through
  16. property delay            -- the delay between animated frames of the sound trumpet thingie
  17. property activeHilite     -- the color of the text when it is playing.
  18. property passiveHilite    -- the color of the text when it is not playing.
  19.  
  20.  
  21. -- these are the malleable properties of the banner
  22. property sndMember  -- the stored memberNum of the last played banner sound
  23. property sndLib     -- the stored castLibNum of the last played banned sound
  24. property icnPtr     -- the current frame of the sound icon animation
  25. property lastTime   -- the last time check for the sound icon animation
  26.  
  27. global gPrinterB,gBannerartB,gLeftB,gSpeakerB,gHomeB,gHelpB,gRightB
  28.  
  29.  
  30. on new me
  31.   -- set constants:
  32.   set bannerSprite = gSpeakerB
  33.   set bannerFieldCast = "topBanner"
  34.   set bannerCastList = ["speaker,1", "speaker,2", "speaker,3"]
  35.   set delay = 7
  36.   set activeHilite = 134
  37.   set passiveHilite = 255
  38.   
  39.   -- initialize the ancestor:
  40.   set ancestor = new (script "Dialog")
  41.   
  42.   -- do other initializations:
  43.   set sndMember = 0
  44.   set sndLib = 0
  45.   set icnPtr = 1
  46.   set lastTime = 0
  47.   set the foreColor of member bannerFieldCast = passiveHilite
  48.   return me
  49. end
  50.  
  51.  
  52. on destruct me
  53.   if objectP (ancestor) then destruct (ancestor)
  54.   set ancestor = 0
  55. end
  56.  
  57.  
  58.  
  59. -- set up a banner and play it, based on the member of the passed sprite.
  60. -- depending on the command passed, we will look for sounds and text in appropriate castLibs.
  61. -- command argument can currently be: #prompt, or #ID
  62.  
  63. on playSprite me, spr, command
  64.   case (command) of
  65.     #prompt:
  66.       set sndMember = the memberNum of sprite spr
  67.       set sndLib = the name of castLib the castLibNum of sprite spr & " prompts"
  68.       
  69.       set rootName = item 1 of (the name of member sndMember of castLib sndLib)
  70.       setUpBanner(me, rootName)
  71.       
  72.     otherwise  -- currently #ID...or void...?
  73.       set sndMember = the memberNum of sprite spr
  74.       set sndLib = the name of castLib the castLibNum of sprite spr & " IDs"
  75.       
  76.       if the type of member sndMember of castLib sndLib <> #sound then return
  77.       
  78.       puppetSound 1, member sndMember of castLib sndLib
  79.       updateStage
  80.   end case
  81. end
  82.  
  83.  
  84.  
  85. -- this looks for a sound called newRootName & ",prompt"
  86. -- and a text member called newRootName & ",txt"
  87. -- it puts a ref to both into the properties for this object, and then 
  88. -- loads them into the on stage members
  89.  
  90. on setupBanner me, newRootName
  91.   if the foreColor of member bannerFieldCast = activeHilite then 
  92.     return 
  93.   end if
  94.   
  95.   -- check argument:
  96.   if voidP (newRootName) or newRootName = "" then
  97.     put "setUpBanner was passed an invalid argument (newRootName)."
  98.     return 0
  99.   end if
  100.   
  101.   -- set up the sound:
  102.   set thisSound = (newRootName & ",prompt")
  103.   if the number of member thisSound <= 0 then
  104.     put thisSound && "is not a valid member (setUpBanner)."
  105.     return 0
  106.   end if
  107.   
  108.   set sndMember = the memberNum of member thisSound
  109.   set sndLib = the castLibNum of member thisSound
  110.   
  111.   if the type of member sndMember of castLib sndLib <> #sound then 
  112.     put thisSound && "is not a valid #sound member (setUpBanner)."
  113.     return 0
  114.   end if
  115.   
  116.   -- set up the text:
  117.   set thisText = (newRootName & ",txt")
  118.   --  if the number of member thisText <= 0 then
  119.   --    put thisText && "is not a valid member (setUpBanner)."
  120.   --    return 0
  121.   --  end if
  122.   
  123.   --  if the type of member thisText <> #field or the type of member thisText <> #text then 
  124.   --    put thisText && "is not a valid #field or #text member (setUpBanner)."
  125.   --    return 0
  126.   --  end if
  127.   
  128.   put the text of member thisText into field bannerFieldCast
  129.   
  130.   -- now play the banner for the first time
  131.   -- playBanner(me)
  132.   
  133.   puppetSprite bannerSprite, TRUE
  134.   
  135.   set the foreColor of member bannerFieldCast = activeHilite
  136.   
  137.   puppetSound 1, member sndMember of castLib sndLib
  138.   updateStage
  139.   
  140.   set icnPtr = 1
  141.   set lastTime = the timer
  142.   
  143.   go the Frame
  144.   return 1
  145. end
  146.  
  147.  
  148. -- this just plays back the current banner sound and text, while animating the sound icon
  149.  
  150. on playBanner me
  151.   puppetSprite bannerSprite, TRUE
  152.   
  153.   set the foreColor of member bannerFieldCast = activeHilite
  154.   
  155.   puppetSound 1, member sndMember of castLib sndLib
  156.   updateStage
  157.   
  158.   set icnPtr = 1
  159.   set lastTime = the timer
  160.   
  161.   go the frame
  162. end
  163.  
  164.  
  165. -- we are done, now return stuff to normal
  166.  
  167. on endBannerSound me
  168.   sound stop 1
  169.   set the foreColor of member bannerFieldCast = passiveHilite
  170.   puppetSprite bannerSprite, FALSE
  171.   set icnPtr = 1
  172.   set lastTime = 0
  173.   updateStage
  174. end
  175.  
  176.  
  177. -- update the sound animation:
  178.  
  179. on stepFrame me
  180.   stepFrame (ancestor)
  181.   if the foreColor of member bannerFieldCast = passiveHilite then return
  182.   
  183.   if soundBusy(1) then
  184.     if the timer >= lastTime + delay then
  185.       set currName = getAt(bannerCastList, icnPtr)
  186.       set the memberNum of sprite bannerSprite to the memberNum of member currName 
  187.       set the castLibNum of sprite bannerSprite to the castLibNum of member currName
  188.       set icnPtr = icnPtr + 1
  189.       if icnPtr > count(bannerCastList) then set icnPtr = 1
  190.       set lastTime = the timer
  191.     end if
  192.     go the Frame
  193.   else
  194.     endBannerSound (me)
  195.   end if
  196. end
  197.  
  198.  
  199. -- this just clears out the text for the first time you want to use it
  200.  
  201. on clearBanner me
  202.   put " " into field bannerFieldCast
  203.   set the foreColor of member bannerFieldCast = passiveHilite
  204. end
  205.  
  206.